home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / ip / slip / cslip-2.6 / tip / acutab.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-30  |  2.8 KB  |  88 lines

  1. /*
  2.  * Copyright (c) 1983 The Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that: (1) source distributions retain this entire copyright
  7.  * notice and comment, and (2) distributions including binaries display
  8.  * the following acknowledgement:  ``This product includes software
  9.  * developed by the University of California, Berkeley and its contributors''
  10.  * in the documentation or other materials provided with the distribution
  11.  * and in all advertising materials mentioning features or use of this
  12.  * software. Neither the name of the University nor the names of its
  13.  * contributors may be used to endorse or promote products derived
  14.  * from this software without specific prior written permission.
  15.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  16.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  17.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  18.  */
  19.  
  20. #ifndef lint
  21. static char sccsid[] = "@(#)acutab.c    5.4 (Berkeley) 6/1/90";
  22. #endif /* not lint */
  23.  
  24. #include "tip.h"
  25.  
  26. extern int df02_dialer(), df03_dialer(), df_disconnect(), df_abort(),
  27.        biz31f_dialer(), biz31_disconnect(), biz31_abort(),
  28.        biz31w_dialer(),
  29.        biz22f_dialer(), biz22_disconnect(), biz22_abort(),
  30.        biz22w_dialer(),
  31.        ven_dialer(), ven_disconnect(), ven_abort(),
  32.        hay_dialer(), hay_disconnect(), hay_abort(),
  33.        cour_dialer(), cour_disconnect(), cour_abort(),
  34.        v3451_dialer(), v3451_disconnect(), v3451_abort(),
  35.        v831_dialer(), v831_disconnect(), v831_abort(),
  36.        sm24_dialer(), sm24_disconnect(), sm24_abort(),
  37.        tb_dialer(), tb_disconnect(), tb_abort(),
  38.        dn_dialer(), dn_disconnect(), dn_abort();
  39.  
  40. acu_t acutable[] = {
  41. #if TELEBIT
  42.     "telebit", tb_dialer,    tb_disconnect,        tb_abort,
  43. #endif
  44. #if SM2400
  45.     "sm2400", sm24_dialer,    sm24_disconnect,    sm24_abort,
  46. #endif
  47. #if BIZ1031
  48.     "biz31f", biz31f_dialer, biz31_disconnect,    biz31_abort,
  49.     "biz31w", biz31w_dialer, biz31_disconnect,    biz31_abort,
  50. #endif
  51. #if BIZ1022
  52.     "biz22f", biz22f_dialer, biz22_disconnect,    biz22_abort,
  53.     "biz22w", biz22w_dialer, biz22_disconnect,    biz22_abort,
  54. #endif
  55. #if DF02
  56.     "df02",    df02_dialer,    df_disconnect,        df_abort,
  57. #endif
  58. #if DF03
  59.     "df03",    df03_dialer,    df_disconnect,        df_abort,
  60. #endif
  61. #if DN11
  62.     "dn11",    dn_dialer,    dn_disconnect,        dn_abort,
  63. #endif
  64. #ifdef VENTEL
  65.     "ventel",ven_dialer,    ven_disconnect,        ven_abort,
  66. #endif
  67. #ifdef HAYES
  68.     "hayes",hay_dialer,    hay_disconnect,        hay_abort,
  69. #endif
  70. #ifdef COURIER
  71.     "courier",cour_dialer,    cour_disconnect,    cour_abort,
  72. #endif
  73. #ifdef V3451
  74. #ifndef V831
  75.     "vadic",v3451_dialer,    v3451_disconnect,    v3451_abort,
  76. #endif
  77.     "v3451",v3451_dialer,    v3451_disconnect,    v3451_abort,
  78. #endif
  79. #ifdef V831
  80. #ifndef V3451
  81.     "vadic",v831_dialer,    v831_disconnect,    v831_abort,
  82. #endif
  83.     "v831",v831_dialer,    v831_disconnect,    v831_abort,
  84. #endif
  85.     0,    0,        0,            0
  86. };
  87.  
  88.